home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / FADER / FADE_IN.H < prev    next >
Text File  |  1991-03-01  |  684b  |  25 lines

  1. /* ===================================
  2.  
  3. File: Fade_In.h
  4. Function: Header for this window
  5. History: 3/1/91 Original by Prototyper.  
  6.  
  7. ================================= */
  8.  
  9.  
  10. /* Initialize us so all our routines can be activated */
  11. extern  void  Init_Fade_In(void);
  12.  
  13. /* Close our window */
  14. extern  void  Close_Fade_In(WindowPtr  whichWindow, TEHandle *theInput);
  15.  
  16. /* Open our window and draw everything */
  17. extern  void  Open_Fade_In(TEHandle *theInput);
  18.  
  19. /* Update our window, someone uncovered a part of us */
  20. extern  void  UpDate_Fade_In(WindowPtr  whichWindow);
  21.  
  22. /*  Handle action to our window, like controls  */
  23. extern  void  Do_Fade_In(EventRecord  *myEvent, TEHandle  *theInput);
  24.  
  25.